home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / docs / ascii / others / guucp / guucp_mx.txt next >
Encoding:
Text File  |  1993-11-10  |  30.6 KB  |  660 lines

  1. MX-RECEIVERS EXPLAINED
  2. ----------------------
  3. by Burt Juda 1:107/309, July 93 
  4. (in area UFGATE)
  5.  
  6.  
  7. Machines which are physically connected to the Internet each have a unique 
  8. Internet Protocol address (often called an "IP address"), 4 decimal numbers 
  9. between 0 and 254 separated by dots (ie: my workstation, zeus.ieee.org is 
  10. 140.98.2.1).  These numbers are used in the headers of the encapsulated 
  11. packets (all data is broken up into chunks and eack has a header showing 
  12. origination and destination) transmitted over the Internet.
  13.  
  14. The "Domain Name Service" is a distributed system of having the data at 
  15. different locations and is effectively a "database" of mappings between the 
  16. "names" that machines are known as and their "IP addresses".  In order to 
  17. communicate with a system one's machine must get the IP-address of the 
  18. machine it wants to talk to from the DNS first.  These are stored in the 
  19. DNS in what are known as "A" records.  Machines which have IP-addresses 
  20. exchange "mail" using a protocol called SMTP (Simple Mail Transfer 
  21. Protocol), communicating on port 25 of the set of IP sockets.
  22.  
  23. However, there are many machines which have "names" but are NOT connected 
  24. physically to the Internet, those doing UUCP and other reasons.  In order 
  25. to get mail to such a system,  the DNS contains an "MX" record.  The "MX" 
  26. record, instead of giving a dotted-quad IP-address,  holds the "name" of 
  27. the system which *does* have an IP-address and knows how to get mail to the 
  28. real destination system.  An "MX" record *must* point to the *real name* of 
  29. the machine which is accepting mail for the destination system.  A machine 
  30. may have several names, but the "MX" records *must* point to it's TRUE name 
  31. (that which is returned by the `hostname` command on a UNIX system).  The 
  32. machine which is pointed to by the "MX" record is known as the 
  33. "MX-receiver" for the destination system.
  34.  
  35. The reason that the "MX" record *must* point to the TRUE name of the 
  36. MX-receiver is that *it* will in turn query the DNS and will compare its 
  37. `hostname` with any MX-records found.  The MX-records also have a number 
  38. which is a "Precedence" number.  They are tried in order, but always 
  39. skipping any MX-records which point to itself.  If the MX-record with the 
  40. *lowest* precedence number points to itself, then it *must* have the proper 
  41. rules in its mailer configuration to deliver the mail via means OTHER than 
  42. SMTP, otherwise an error will result.  This means that an "MX-receiver" 
  43. system *must* install the proper handling in its configuration for the 
  44. destination system *BEFORE* the "MX" record is installed in the DNS.  
  45. Otherwise,  errors can result, mail loops develop, and the mail cannot be 
  46. delivered.
  47.  
  48. Here's a couple of examples of the DNS records from  .fidonet.org ...
  49. These are a *PARTIAL LISTING* as examples only.
  50.  
  51. ; ====================== begin example DNS ======================
  52. ; Nameserver info for FIDONET.ORG domain
  53. ; the original of this file resides in:
  54. ; zeus.ieee.org:/usr/local/ns/fidonet.org
  55. ;
  56. $ORIGIN fidonet.org.
  57. @       IN      SOA     ZEUS.IEEE.ORG. HOSTMASTER.FIDONET.FIDONET.ORG. (
  58.                         10303   ; serial (version of this file)
  59.                         86400   ; refresh once a day
  60.                         600     ; retry refresh every 10 minutes
  61.                         36000000; expire after 1000 hours (over week)
  62.                         86400   ; 259200        ; minimun TTL of 3 day
  63.                         )
  64.                 IN      NS      ZEUS.IEEE.ORG.
  65.                 IN      NS      POLARIS.LLNL.GOV.
  66. ;
  67. ;           Special Entries and Services
  68. ;           ----------------------------
  69. ;
  70. ns              IN      CNAME   zeus.ieee.org.
  71. fidonet         IN      CNAME   zeus.ieee.org.
  72. ;       an example where an "A" record exists but Mail is handled
  73. ;           by a different machine
  74. ftp             IN      A       140.98.1.1
  75.                 IN      MX      10 zeus.ieee.org.
  76.                 IN      MX      20 rab.ieee.org.
  77. ;
  78. ;           The gateway sites themselves
  79. ;           ----------------------------
  80. ;
  81. ;       if m2xenix is down, rain will queue mail for storage
  82. busker          IN      MX      10 m2xenix.psg.com. ;   1:105/14
  83.                 IN      MX      20 rain.psg.com.
  84. cmhgate         IN      MX      10 cis.OHIO-STATE.EDU. ; 1:226/20
  85. compsol         IN      MX      10 sserve.cc.adfa.oz.au. ; 3:622/407
  86. ehsnet          IN      MX      10 uxc.cso.uiuc.edu. ;  1:233/13
  87. f-454           IN      MX      10 uucp-gw.cc.uh.edu. ; 1:106/1024
  88. ;       mail for 'fidonews' is queued thru 1:1/31 for delivery to 1:1/23
  89. ;           special handling is need in the mailer config on zeus
  90. fidonews        IN      MX      10 zeus.ieee.org. ; re-directed to 1:1/23
  91. ;       these sites are handled specially by zeus which remaps the
  92. ;           mail to a bang!path format and sends it back out via SMTP
  93. ;           these will be phased out over time
  94. fquest          IN      MX      10 zeus.ieee.org. ;     1:19/23
  95. gisatl          IN      MX      10 zeus.ieee.org. ;     1:133/411
  96. gstore          IN      MX      10 zeus.ieee.org. ;     1:103/234
  97. ;       my home needs an Address record for SLIP to function when I use it
  98. ;           mail is specially handled by re-naming to mcastl.ieee.org and
  99. ;           sending thru my gateway at 1:107/10
  100. mcastl          IN      A       140.98.200.3
  101.                 IN      MX      10 ZEUS.IEEE.ORG. ;     1:107/309
  102.                 IN      MX      20 RAB.IEEE.ORG.
  103.                 IN      MX      30 TAB.IEEE.ORG.
  104. mcws            IN      MX      10 elroy.jpl.nasa.gov. ; 1:102/851
  105. mechanic        IN      MX      10 myrddin.sybus.com. ; 1:3603/330
  106. ofa123          IN      MX      10 ics.uci.edu. ;       1:103/208
  107. rochgte         IN      MX      10 valhalla.ee.rochester.edu. ;1:3613/333
  108. ;       David Dodell's Waffle system is actually in between enuucp and 
  109. solitud
  110. solitud         IN      MX      10 enuucp.eas.asu.edu. ;1:300/23
  111. ;       Nameserver "authority" is delegated to ns.web.apc.org for the
  112. ;           sub-domain of "webfido"
  113. webfido         IN      NS      ns.web.apc.org. ;       1:250/406
  114.                 IN      NS      ns.uunet.ca.
  115.                 IN      NS      ns.UU.NET.
  116. zorro9          IN      MX      10 talcott.harvard.edu. ;1:16/390
  117. ;
  118. ;
  119. ;   Each Net within FidoNet has a wildcard MX-record.
  120. ;   The IP site which the mail is directed to is expected to have
  121. ;   installed the sendmail or smail rules necessary to queue
  122. ;   ALL mail for  *.nNET.z#.fidonet.org  for pickup by the
  123. ;   appropriate gateway site.
  124. ;
  125. ;   A wildcard MX-record is maintained for each Zone, so that
  126. ;   there is always a "default" gateway for any new Nets which
  127. ;   are placed in the Nodelist by the *C's.
  128. ;   At present, the Zone-1 "default" MX points to zeus.ieee.org,
  129. ;   which queues mail for gating by 1:1/31.
  130. ;
  131. ;   Where possible, the gateway sitename is shown as a Comment
  132. ;   behind a semi-colon after the MX-record.
  133. ;
  134. ;
  135. $ORIGIN z1.fidonet.org.
  136. ;
  137. ;               Zone 1 by Net (examples)
  138. ;               =============
  139. ;
  140. *.n260  IN      MX      10 valhalla.ee.rochester.edu. ; rochgte
  141. *.n261  IN      MX      10 relay1.UU.NET. ; blkcat
  142.         IN      MX      10 relay2.UU.NET. ; blkcat
  143. ;
  144. *.n104  IN      MX      10 ncar.ucar.edu.
  145. *.n300  IN      MX      10 noao.edu.
  146. *.n310  IN      MX      10 ncar.ucar.edu.
  147. *.n312  IN      MX      10 enuucp.eas.asu.edu.
  148. ;
  149. *.n16   IN      MX      10 talcott.harvard.edu. ; zorro9
  150. *.n101  IN      MX      10 talcott.harvard.edu. ; zorro9
  151. *.n141  IN      MX      10 bunker.shel.isc-br.com.
  152. *.n322  IN      MX      10 talcott.harvard.edu. ; zorro9
  153. *.n333  IN      MX      10 talcott.harvard.edu. ; zorro9
  154. *.n325  IN      MX      10 sadye.emba.uvm.edu. ; wsyd
  155. ;
  156. *.n18   IN      MX      10 cybernet.cse.fau.edu. ; branch
  157. *.n112  IN      MX      10 cybernet.cse.fau.edu. ; branch
  158. *.n116  IN      MX      10 cybernet.cse.fau.edu. ; branch
  159. *.n123  IN      MX      10 cybernet.cse.fau.edu. ; branch
  160. *.n3603 IN      MX      10 myrddin.sybus.com. ; mechanic
  161. *.n3604 IN      MX      10 cybernet.cse.fau.edu. ; branch
  162. *.n3605 IN      MX      10 cybernet.cse.fau.edu. ; branch
  163. ;
  164. ;       default Zone-1 forwarding
  165. ;       -------------------------
  166. ;
  167. ;   Wildcard record for *.z1.fidonet.org - handled via 1:1/31
  168. ;           All Nets in Zone-1 which do not have its own MX-record
  169. ;           will fall thru to here
  170. ;
  171. *       IN      MX      10 zeus.ieee.org.
  172.         IN      MX      20 rab.ieee.org.
  173. ;
  174. ; (For Zone-2, Randy gates traffic and sends across the pond to
  175. ;  Henk Wevers for routing.  There seem to be problems in FidoNet
  176. ;  routing on the European side of the pond from there.)
  177. ;
  178. $ORIGIN z2.fidonet.org.
  179. *       IN      MX      10 m2xenix.psg.com.
  180.         IN      MX      20 rain.psg.com.
  181. ;
  182. $ORIGIN z3.fidonet.org.
  183. *.n620  IN      MX      10 sserve.cc.adfa.oz.au.        ; compsol
  184. *.n622  IN      MX      10 sserve.cc.adfa.oz.au.        ; compsol
  185. *       IN      MX      10 jabaru.cec.edu.au.
  186. ;
  187. ;
  188. ; (Note: the Full DNS file is always available via File-Request from 1:1/31 
  189. or ; 1:107/309 as the filename FIDONET.ORG)
  190. ;
  191. ; ========================== end of example DNS ========================
  192.  
  193. This is extremely important for the .fidonet.org domain to function 
  194. properly, since the "Hostmaster" (me),  maintaining the MX-records for the 
  195. domain is very dependent on all the MX-receivers having the proper 
  196. configurations.  Many times,  a site will hook up with someone who is 
  197. willing to pass mail/news to them via UUCP, but is NOT physically connected 
  198. to the Internet (does NOT have an IP-address and running an SMTP mailer).  
  199. Now what?  This machine may also be a hop or two away from the nearest "IP" 
  200. node in the Path.  Now we're dependent on *ALL* of the systems in that path 
  201. to have the proper configurations for handling mail for the new site.  
  202. Mostly, these systems depend on the "UUCP Maps" for their path 
  203. configurations.  Now we have a Catch-22 situation.  I cannot submit the Map 
  204. until the site is "tested" and the MX-record installed in the DNS.  Even 
  205. once I do, it can take weeks or months before the Map appears in the 
  206. Newsgroup comp.mail.maps (fully Moderated and usually comes thru monthly).  
  207. In the meantime,  the configurations on all the systems in the dependent 
  208. path are "broken" waiting on that all-important Map for the new site.  Mail 
  209. goes into a real "loop".
  210.  
  211. To add insult to the whole process, the system names contained in a UUCP 
  212. Map (which most new sites will construct and send me) do NOT contain the 
  213. "Fully Qualified Domain Name" (the dotted name) of the systems they connect 
  214. to.  Now it becomes a matter of guesswork to see if any of the site(s) they 
  215. connect to have an IP-address and can qualify as an MX-receiver.
  216.  
  217. For the reasons outlined in the last two paragraphs,  it is essential for a 
  218. new site to hook up with a system that has an IP-address and can act as 
  219. their MX-receiver.  It's much easier if the proper Map procedures were 
  220. followed and their UUCP Map submission contained the proper "#F 
  221. mx.receiver.domain" line in their Maps, giving me the 
  222. Fully-Qualified-Domain-Name of their MX-receiver.
  223. It's bad enough that I have to hand-edit each and every Map submitted, 
  224. because our wonderful FidoNet editors expand TABS to spaces and the 
  225. submission I send to the UUCP Map Coordinators *must* contain the proper 
  226. TAB separators, not spaces!
  227.  
  228. -!- msgedsq 2.1a
  229.  ! Origin: Merlin's Castle, Edison, NJ * 908-572-1202/HST/V32  (1:107/309)
  230.  
  231.  
  232. Msg #388 / 1-467  Time: 30 Jul 93  00:51:22
  233. From: Burt Juda
  234. To  : All
  235. Subj: DNS records (part 1)
  236. ---------[UFGATE]-----------------------------------------------
  237. Below and in the next message are the DNS records for .fidonet.org.
  238.  
  239. If anyone has any corrections or additions,  you know where to send them 
  240. (via UUCP please!).
  241.  
  242. BTW,  the DNS files are always REQuestable at 1:1/31 or here,
  243. filename is FIDONET.ORG.
  244.  
  245.        - Burt
  246.  
  247. _ _ _ O / _ _ C_U_T_ H_E_R_E_ _ _ _
  248.       O \
  249.  
  250. ; Nameserver info for FIDONET.ORG domain
  251. ; the original of this file resides in:
  252. ; zeus.ieee.org:/usr/local/ns/fidonet.org
  253. ;
  254. $ORIGIN fidonet.org.
  255. @       IN      SOA     ZEUS.IEEE.ORG. HOSTMASTER.FIDONET.FIDONET.ORG. (
  256.                         10303   ; serial (version of this file)
  257.                         86400   ; refresh once a day
  258.                         600     ; retry refresh every 10 minutes
  259.                         36000000; expire after 1000 hours (over week)
  260.                         86400   ; 259200        ; minimun TTL of 3 day
  261.                         )
  262.                 IN      NS      ZEUS.IEEE.ORG.
  263.                 IN      NS      POLARIS.LLNL.GOV.
  264. ;
  265. ;           Special Entries and Services
  266. ;           ----------------------------
  267. ;
  268. ns              IN      CNAME   zeus.ieee.org.
  269. ieee            IN      CNAME   zeus.ieee.org.
  270. fidonet         IN      CNAME   zeus.ieee.org.
  271. ftp             IN      A       140.98.1.1
  272.                 IN      MX      10 zeus.ieee.org.
  273.                 IN      MX      20 rab.ieee.org.
  274. gopher          IN      A       140.98.2.1
  275.                 IN      MX      10 zeus.ieee.org.
  276.                 IN      MX      20 rab.ieee.org.
  277. jabaru          IN      CNAME   jabaru.cec.edu.au.
  278. ;
  279. ;           The gateway sites themselves
  280. ;           ----------------------------
  281. ;
  282. afitamy         IN      MX      10 dayton.saic.com. ;   1:110/300
  283. baobab          IN      MX      10 relay1.UU.NET. ;     1:109/151
  284.                 IN      MX      10 relay2.UU.NET.
  285. bdragon         IN      MX      10 zeus.ieee.org. ;     1:322/401
  286. blkcat          IN      MX      10 relay1.UU.NET. ;     1:109/401
  287.                 IN      MX      10 relay2.UU.NET.
  288. bmug            IN      MX      10 apple.com. ;         1:161/445
  289. branch          IN      MX      10 cybernet.cse.fau.edu. ; 1:369/11
  290. buscard         IN      MX      10 zeus.ieee.org. ;     1:324/121
  291. business        IN      MX      10 zeus.ieee.org. ;     1:363/42
  292. busker          IN      MX      10 m2xenix.psg.com. ;   1:105/14
  293.                 IN      MX      20 rain.psg.com.
  294. camphq          IN      MX      10 apple.com. ;         1:2606/533
  295. catpe           IN      MX      10 zeus.ieee.org. ;     2:7104/2
  296. ccfcc           IN      MX      10 csufres.csufresno.edu. ; 1:205/42
  297. clubzen         IN      MX      10 zeus.ieee.org. ;     1:161/148
  298. cmhgate         IN      MX      10 cis.OHIO-STATE.EDU. ; 1:226/20
  299. compsol         IN      MX      10 sserve.cc.adfa.oz.au. ; 3:622/407
  300. cpanet          IN      MX      10 zeus.ieee.org. ;     1:270/311
  301. csfso           IN      MX      10 zeus.ieee.org. ;     1:3603/230
  302. csource         IN      MX      10 jabaru.cec.edu.au.
  303. danbo           IN      MX      10 relay1.UU.NET.
  304.                 IN      MX      10 relay2.UU.NET.
  305. dawggon         IN      MX      10 m2xenix.psg.com. ;   1:105/6
  306.                 IN      MX      20 rain.psg.com.
  307. dehnbase        IN      MX      10 zeus.ieee.org. ;     1:104/418
  308. dreamz          IN      MX      10 think.com.
  309. dtsc            IN      MX      10 zeus.ieee.org. ;     1:102/531
  310. eddysf          IN      MX      10 hvli4.HZeeland.nl. ; 2:285/406
  311. edplace         IN      MX      10 enuucp.eas.asu.edu.
  312. egsgate         IN      MX      10 zeus.ieee.org. ;     1:250/98
  313. ehsnet          IN      MX      10 uxc.cso.uiuc.edu. ;  1:233/13
  314. eilc            IN      MX      10 slopoke.mlb.semi.harris.com. ; 1:374/60
  315. emdisle         IN      MX      10 noao.edu. ;          1:300/14
  316. ephanism        IN      MX      10 rutgers.edu.
  317. etcetc          IN      MX      10 zeus.ieee.org. ;     1:170/106
  318. f-454           IN      MX      10 uucp-gw.cc.uh.edu. ; 1:106/1024
  319. faq             IN      MX      10 zeus.ieee.org. ; re-written to gisatl
  320. fidonews        IN      MX      10 zeus.ieee.org. ; re-directed to 1:1/23
  321. fidouk          IN      MX      10 eros.uknet.ac.uk. ;  2:253/153
  322. fidour          IN      MX      10 m2xenix.psg.com.
  323.                 IN      MX      20 rain.psg.com.
  324. fquest          IN      MX      10 zeus.ieee.org. ;     1:19/23
  325. gisatl          IN      MX      10 zeus.ieee.org. ;     1:133/411
  326. gnfido          IN      NS      cdp.igc.org. ;          2:254/70
  327.                 IN      NS      rain.psg.com.
  328. goldmill        IN      MX      10 oldcolo.com. ;       1:128/27
  329. gstore          IN      MX      10 zeus.ieee.org. ;     1:103/234
  330. halluc          IN      MX      10 uu.psi.com. ;        1:109/345
  331. hourgls         IN      MX      10 zeus.ieee.org. ;     1:2604/101
  332. hndymn          IN      MX      10 enuucp.eas.asu.edu. ; 1:114/30
  333. hnews           IN      MX      10 bunker.shel.isc-br.com. ; 141/420
  334. idic            IN      MX      10 ncar.ucar.edu. ;     1:104/424
  335. iea             IN      MX      10 tau-ceti.isc-br.com. ; 1:346/10
  336. isishq          IN      MX      10 zeus.ieee.org. ;     1:163/162
  337. jadpc2          IN      MX      10 crash.cts.com. ;     1:202/723
  338. kcufgat         IN      MX      10 zeus.ieee.org. ;     1:280/500
  339. keithf          IN      MX      10 dragon.b23b.ingr.com.
  340. kennel          IN      MX      10 charon.amdahl.com. ; 1:143/8
  341. kisbbs          IN      MX      10 zeus.ieee.org. ;     1:3624/11
  342. klbbs           IN      MX      10 bunker.shel.isc-br.com. ; 1:141/370
  343. lansend         IN      MX      10 zeus.ieee.org. ;     1:143/3
  344. linn            IN      MX      10 zeus.ieee.org. ;     2:320/100
  345. malymi          IN      MX      10 zeus.ieee.org. ;     1:103/110
  346. mcastl          IN      A       140.98.200.3
  347.                 IN      MX      10 ZEUS.IEEE.ORG. ;     1:107/309
  348.                 IN      MX      20 RAB.IEEE.ORG.
  349.                 IN      MX      30 TAB.IEEE.ORG.
  350. mcws            IN      MX      10 elroy.jpl.nasa.gov. ; 1:102/851
  351. mdf             IN      MX      10 zeus.ieee.org. ;     1:382/39
  352. mechanic        IN      MX      10 myrddin.sybus.com. ; 1:3603/330
  353. memco           IN      MX      10 zeus.ieee.org. ;     1:139/610
  354. newport         IN      MX      10 RUTGERS.EDU. ;       1:107/930
  355. nwark           IN      MX      10 engr.uark.edu. ;     1:391/1060
  356. ocitor          IN      MX      10 zeus.ieee.org. ;     1:124/2206
  357. ofa123          IN      MX      10 ics.uci.edu. ;       1:103/208
  358. ohiont          IN      MX      10 cwjcc.ins.cwru.edu. ;1:157/512
  359.                 IN      MX      20 usenet.ins.cwru.edu.
  360. orioneb         IN      MX      10 zeus.ieee.org. ;     1:141/101
  361. ougate          IN      MX      10 kittyhawk.ecn.uoknor.edu. ;1:147/101
  362. palind          IN      MX      10 zeus.ieee.org. ;     1:124/3107
  363. paranet         IN      MX      10 ncar.ucar.edu. ;     1:104/422
  364. psycho          IN      MX      10 slopoke.mlb.semi.harris.com. ;1:3603/75
  365. puddle          IN      MX      10 m2xenix.psg.com. ;   1:105/42
  366.                 IN      MX      20 rain.psg.com.
  367. quadrant        IN      MX      10 zeus.ieee.org. ;     1:105/309
  368. redstar         IN      MX      10 zeus.ieee.org. ;     1:115/639
  369. republik        IN      MX      10 zeus.ieee.org. ;     1:103/108
  370. rochgte         IN      MX      10 valhalla.ee.rochester.edu. ;1:3613/333
  371. rrgate          IN      MX      10 zeus.ieee.org. ;     1:101/660
  372. shelter         IN      MX      10 kumr.lns.com. ;      1:125/5109
  373. solitud         IN      MX      10 enuucp.eas.asu.edu. ;1:300/23
  374. spuzz           IN      MX      10 zeus.ieee.org. ;     1:2606/534
  375. sscreen         IN      MX      10 zeus.ieee.org. ;     1:141/9
  376. ssespool        IN      MX      10 zeus.ieee.org. ;     1:202/907
  377. sunbrk          IN      MX      10 zeus.ieee.org. ;     1:343/15
  378. tdkt            IN      MX      10 kksys.mn.org. ;      1:282/31
  379. terrabit        IN      MX      10 zeus.ieee.org. ;     1:282/341
  380. therose         IN      MX      10 qiclab.scn.rain.com. ;1:105/7
  381. ttmail          IN      MX      10 zeus.ieee.org. ;     1:385/8
  382. twarp           IN      MX      10 hpb.cis.pitt.edu. ;  1:129/40
  383. umagic          IN      MX      10 infonode.ingr.com. ; 1:373/12
  384. urchin          IN      MX      10 zeus.ieee.org. ;     1:106/88
  385. vkom            IN      MX      10 think.com. ;         1:101/316
  386. webfido         IN      NS      ns.web.apc.org. ;       1:250/406
  387.                 IN      NS      ns.uunet.ca.
  388.                 IN      NS      ns.UU.NET.
  389. wsyd            IN      MX      10 sadye.emba.uvm.edu. ;1:325/101
  390. yantar          IN      MX      10 zeus.ieee.org. ;     1:129/128
  391. zorro9          IN      MX      10 talcott.harvard.edu. ;1:16/390
  392. ;
  393. ;
  394. ;   Each Net within FidoNet has a wildcard MX-record.
  395. ;   The IP site which the mail is directed to is expected to have
  396. ;   installed the sendmail or smail rules necessary to queue
  397. ;   ALL mail for  *.nNET.z#.fidonet.org  for pickup by the
  398. ;   appropriate gateway site.
  399. ;
  400. ;   A wildcard MX-record is maintained for each Zone, so that
  401. ;   there is always a "default" gateway for any new Nets which
  402. ;   are placed in the Nodelist by the *C's.
  403. ;   At present, the Zone-1 "default" MX points to zeus.ieee.org,
  404. ;   which queues mail for gating by 1:1/31.
  405. ;
  406. ;   Where possible, the gateway sitename is shown as a Comment
  407. ;   behind a semi-colon after the MX--record.
  408. ;
  409. ;
  410. $ORIGIN z1.fidonet.org.
  411. ;
  412. ;               Zone 1 by Net
  413. ;               =============
  414. ;
  415. f2.n1           IN      MX      10 m2xenix.psg.com.
  416.                 IN      MX      20 rain.psg.com.
  417. f3.n1           IN      MX      10 m2xenix.psg.com.
  418.                 IN      MX      20 rain.psg.com.
  419. f4.n1           IN      MX      10 m2xenix.psg.com.
  420.                 IN      MX      20 rain.psg.com.
  421. f5.n1           IN      MX      10 m2xenix.psg.com.
  422.                 IN      MX      20 rain.psg.com.
  423. f6.n1           IN      MX      10 m2xenix.psg.com.
  424.                 IN      MX      20 rain.psg.com.
  425. *.n1            IN      MX      10 zeus.ieee.org.
  426. ;
  427. ;               Region 10
  428. ;               ---------
  429. ;
  430. *.n125  IN      MX      10 kumr.lns.com.
  431. *.n205  IN      MX      10 csufres.csufresno.edu.
  432. *.n102  IN      MX      10 elroy.jpl.nasa.gov.
  433. *.n103  IN      MX      10 elroy.jpl.nasa.gov.
  434. *.n143  IN      MX      10 charon.amdahl.com.
  435. *.n161  IN      MX      10 lll-winken.llnl.gov.
  436. *.n202  IN      MX      10 crash.cts.com.
  437. *.n204  IN      MX      10 lll-winken.llnl.gov.
  438. *.n206  IN      MX      10 elroy.jpl.nasa.gov.
  439. *.n207  IN      MX      10 elroy.jpl.nasa.gov.
  440. *.n209  IN      MX      10 zeus.ieee.org.
  441. *.n212  IN      MX      10 lll-winken.llnl.gov.
  442. *.n345  IN      MX      10 m2xenix.psg.com.
  443.         IN      MX      20 rain.psg.com.
  444. ;
  445. ;               Region 11
  446. ;               ---------
  447. ;
  448. ;
  449. ; *.n110        IN      MX      10 dayton.saic.com.
  450. *.n157  IN      MX      10 cwjcc.ins.cwru.edu.
  451.         IN      MX      20 usenet.ins.cwru.edu.
  452. *.n226  IN      MX      10 cis.OHIO-STATE.EDU.
  453. *.n233  IN      MX      10 uxc.cso.uiuc.edu.
  454. ;
  455.  
  456.          -------- eof of part 1 ---------
  457.  
  458. -!- msgedsq 2.1a
  459.  ! Origin: Merlin's Castle, Edison, NJ * 908-572-1202/HST/V32  (1:107/309)
  460.  
  461.  
  462. Msg #389 / 1-467  Time: 30 Jul 93  00:53:55
  463. From: Burt Juda
  464. To  : All
  465. Subj: DNS records (part 2)
  466. ---------[UFGATE]-----------------------------------------------
  467. ;
  468. ;               Region 12
  469. ;               ---------
  470. ; (there are NO sites within Region-12)
  471. ;
  472. f406.n250       IN      CNAME   webfido.fidonet.org.
  473. *.n250          IN      MX      10 zeus.ieee.org.
  474. ;
  475. ;               Region 13
  476. ;               ---------
  477. ;
  478. ; (must notify postmaster@uunet.UU.NET for new MX entries
  479. ;  for relay1.UU.NET. )
  480. ;
  481. f1.n107         IN      MX      10 ZEUS.IEEE.ORG.
  482.                 IN      MX      20 RAB.IEEE.ORG.
  483. f10.n107        IN      MX      10 ZEUS.IEEE.ORG.
  484.                 IN      MX      20 RAB.IEEE.ORG.
  485. f309.n107       IN      MX      10 ZEUS.IEEE.ORG.
  486.                 IN      MX      20 RAB.IEEE.ORG.
  487. *.n107  IN      MX      10 ZEUS.IEEE.ORG.
  488.         IN      MX      20 RAB.IEEE.ORG.
  489. *.n109  IN      MX      10 relay1.UU.NET. ; blkcat
  490.         IN      MX      10 relay2.UU.NET. ; blkcat
  491. *.n260  IN      MX      10 valhalla.ee.rochester.edu. ; rochgte
  492. *.n261  IN      MX      10 relay1.UU.NET. ; blkcat
  493.         IN      MX      10 relay2.UU.NET. ; blkcat
  494. *.n265  IN      MX      10 relay1.UU.NET. ; blkcat
  495.         IN      MX      10 relay2.UU.NET. ; blkcat
  496. *.n270  IN      MX      10 relay1.UU.NET. ; blkcat
  497.         IN      MX      10 relay2.UU.NET. ; blkcat
  498. *.n278  IN      MX      10 RUTGERS.EDU.   ; newport
  499. f204.n2603      IN      MX      10 zeus.ieee.org.
  500. *.n2612 IN      MX      10 relay1.UU.NET. ; blkcat
  501.         IN      MX      10 relay2.UU.NET. ; blkcat
  502. *.n2613 IN      MX      10 valhalla.ee.rochester.edu. ; rochgte
  503. ;
  504. ;               Region 14
  505. ;               ---------
  506. ; (there are NO sites in Region-14)
  507. ;
  508. ;               Region 15
  509. ;               ---------
  510. ;
  511. *.n15   IN      MX      10 enuucp.eas.asu.edu.
  512. f15.n114        IN      MX      10 zeus.ieee.org.
  513. *.n114  IN      MX      10 enuucp.eas.asu.edu.
  514. ;
  515. *.n104  IN      MX      10 ncar.ucar.edu.
  516. *.n300  IN      MX      10 noao.edu.
  517. *.n310  IN      MX      10 ncar.ucar.edu.
  518. *.n312  IN      MX      10 enuucp.eas.asu.edu.
  519. ;
  520. ;               Region 16
  521. ;               ---------
  522. ;
  523. *.n16   IN      MX      10 talcott.harvard.edu. ; zorro9
  524. *.n101  IN      MX      10 talcott.harvard.edu. ; zorro9
  525. *.n141  IN      MX      10 bunker.shel.isc-br.com.
  526. *.n322  IN      MX      10 talcott.harvard.edu. ; zorro9
  527. *.n333  IN      MX      10 talcott.harvard.edu. ; zorro9
  528. *.n325  IN      MX      10 sadye.emba.uvm.edu. ; wsyd
  529. ;
  530. ;               Region 17
  531. ;               ---------
  532. ;
  533. f67.n17 IN      MX      10 m2xenix.psg.com.
  534.         IN      MX      20 rain.psg.com.
  535. *.n17   IN      MX      10 zeus.ieee.org.
  536. *.n105  IN      MX      10 m2xenix.psg.com.
  537.         IN      MX      20 rain.psg.com.
  538. *.n153  IN      MX      10 m2xenix.psg.com.
  539.         IN      MX      20 rain.psg.com.
  540. ;
  541. ;               Region 18
  542. ;               ---------
  543. ;
  544. ; (there is wildcard routing at cybernet.cse.fau.edu to branch.
  545. ;  MX entries may be made without prior approval for new Nets.)
  546. ;
  547. *.n18   IN      MX      10 cybernet.cse.fau.edu. ; branch
  548. *.n112  IN      MX      10 cybernet.cse.fau.edu. ; branch
  549. *.n116  IN      MX      10 cybernet.cse.fau.edu. ; branch
  550. *.n123  IN      MX      10 cybernet.cse.fau.edu. ; branch
  551. *.n133  IN      MX      10 cybernet.cse.fau.edu. ; branch
  552. *.n135  IN      MX      10 cybernet.cse.fau.edu. ; branch
  553. *.n137  IN      MX      10 cybernet.cse.fau.edu. ; branch
  554. *.n151  IN      MX      10 cybernet.cse.fau.edu. ; branch
  555. *.n360  IN      MX      10 cybernet.cse.fau.edu. ; branch
  556. *.n361  IN      MX      10 cybernet.cse.fau.edu. ; branch
  557. *.n362  IN      MX      10 cybernet.cse.fau.edu. ; branch
  558. *.n363  IN      MX      10 cybernet.cse.fau.edu. ; branch
  559. *.n365  IN      MX      10 cybernet.cse.fau.edu. ; branch
  560. *.n366  IN      MX      10 cybernet.cse.fau.edu. ; branch
  561. *.n369  IN      MX      10 cybernet.cse.fau.edu. ; branch
  562. *.n370  IN      MX      10 cybernet.cse.fau.edu. ; branch
  563. *.n371  IN      MX      10 cybernet.cse.fau.edu. ; branch
  564. *.n372  IN      MX      10 cybernet.cse.fau.edu. ; branch
  565. *.n373  IN      MX      10 infonode.ingr.com. ; umagic
  566. *.n375  IN      MX      10 cybernet.cse.fau.edu. ; branch
  567. *.n376  IN      MX      10 cybernet.cse.fau.edu. ; branch
  568. *.n379  IN      MX      10 cybernet.cse.fau.edu. ; branch
  569. *.n3600 IN      MX      10 cybernet.cse.fau.edu. ; branch
  570. *.n3601 IN      MX      10 cybernet.cse.fau.edu. ; branch
  571. *.n3602 IN      MX      10 cybernet.cse.fau.edu. ; branch
  572. *.n3603 IN      MX      10 myrddin.sybus.com. ; mechanic
  573. *.n3604 IN      MX      10 cybernet.cse.fau.edu. ; branch
  574. *.n3605 IN      MX      10 cybernet.cse.fau.edu. ; branch
  575. *.n3607 IN      MX      10 cybernet.cse.fau.edu. ; branch
  576. *.n3608 IN      MX      10 cybernet.cse.fau.edu. ; branch
  577. *.n3609 IN      MX      10 cybernet.cse.fau.edu. ; branch
  578. *.n3611 IN      MX      10 cybernet.cse.fau.edu. ; branch
  579. *.n3612 IN      MX      10 cybernet.cse.fau.edu. ; branch
  580. *.n3613 IN      MX      10 cybernet.cse.fau.edu. ; branch
  581. *.n3614 IN      MX      10 cybernet.cse.fau.edu. ; branch
  582. *.n3615 IN      MX      10 cybernet.cse.fau.edu. ; branch
  583. *.n3616 IN      MX      10 cybernet.cse.fau.edu. ; branch
  584. *.n3617 IN      MX      10 cybernet.cse.fau.edu. ; branch
  585. *.n3618 IN      MX      10 cybernet.cse.fau.edu. ; branch
  586. *.n3619 IN      MX      10 cybernet.cse.fau.edu. ; branch
  587. *.n3620 IN      MX      10 cybernet.cse.fau.edu. ; branch
  588. *.n3622 IN      MX      10 cybernet.cse.fau.edu. ; branch
  589. *.n3623 IN      MX      10 cybernet.cse.fau.edu. ; branch
  590. *.n3624 IN      MX      10 cybernet.cse.fau.edu. ; branch
  591. *.n3625 IN      MX      10 cybernet.cse.fau.edu. ; branch
  592. *.n3626 IN      MX      10 cybernet.cse.fau.edu. ; branch
  593. *.n3627 IN      MX      10 cybernet.cse.fau.edu. ; branch
  594. *.n3628 IN      MX      10 cybernet.cse.fau.edu. ; branch
  595. *.n3629 IN      MX      10 cybernet.cse.fau.edu. ; branch
  596. *.n3630 IN      MX      10 cybernet.cse.fau.edu. ; branch
  597. *.n3631 IN      MX      10 cybernet.cse.fau.edu. ; branch
  598. *.n3632 IN      MX      10 cybernet.cse.fau.edu. ; branch
  599. ;
  600. ;               Region 19
  601. ;               ---------
  602. ;
  603. f37.n19         IN      MX      10 engr.uark.edu.
  604. *.n19   IN      MX      10 zeus.ieee.org.
  605. *.n106  IN      MX      10 uucp-gw.cc.uh.edu. ; f-454
  606. *.n124  IN      MX      10 zeus.ieee.org.
  607. *.n147  IN      MX      10 kittyhawk.ecn.uoknor.edu.
  608. *.n391  IN      MX      10 engr.uark.edu.
  609. *.n3821 IN      MX      10 engr.uark.edu.
  610. *.n3822 IN      MX      10 engr.uark.edu.
  611. *.n3823 IN      MX      10 engr.uark.edu.
  612. ;
  613. ;       default Zone-1 forwarding
  614. ;       -------------------------
  615. ;
  616. *       IN      MX      10 zeus.ieee.org.
  617.         IN      MX      20 rab.ieee.org.
  618. ;
  619. ;               Other Zones
  620. ;               ===========
  621. ;
  622. ; (default MX for Zones 2,4,5,6 is m2xenix.psg.com.)
  623. ;
  624. ; (For Zone-2, Randy gates traffic and sends across the pond to
  625. ;  Henk Wevers for routing.  There seem to be problems in FidoNet
  626. ;  routing on the European side of the pond from there.)
  627. ;
  628. $ORIGIN z2.fidonet.org.
  629. *       IN      MX      10 m2xenix.psg.com.
  630.         IN      MX      20 rain.psg.com.
  631. ;
  632. $ORIGIN z3.fidonet.org.
  633. *.n620  IN      MX      10 sserve.cc.adfa.oz.au.        ; compsol
  634. *.n622  IN      MX      10 sserve.cc.adfa.oz.au.        ; compsol
  635. *       IN      MX      10 jabaru.cec.edu.au.
  636. ;
  637. $ORIGIN z4.fidonet.org.
  638. *       IN      MX      10 m2xenix.psg.com.
  639.         IN      MX      20 rain.psg.com.
  640. $ORIGIN z5.fidonet.org.
  641. *       IN      MX      10 m2xenix.psg.com.
  642.         IN      MX      20 rain.psg.com.
  643. $ORIGIN z6.fidonet.org.
  644. *       IN      MX      10 m2xenix.psg.com.
  645.         IN      MX      20 rain.psg.com.
  646. ;
  647. ;
  648. ;  The following have other machines within their control within
  649. ;  their sub-domain and full or partial control of the MX-receiver.
  650. ;  These entries will wildcard traffic for their sub-domains.
  651. ;
  652. $ORIGIN mcws.fidonet.org.
  653. *       IN      MX      10 elroy.jpl.nasa.gov.
  654. $ORIGIN branch.fidonet.org.
  655. *       IN      MX      10 cybernet.cse.fau.edu.
  656. ;
  657. ; ======================= EOF ===========================
  658.  
  659.  
  660.